body {
    text-align: center;
    padding: 0;
    margin: 0;
    background-image: url('fundo.jpg');
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
}



h1 {
    transition: all 0.3s ease;
    color: #ffffff;
    text-align: center;
    font-size: 2.8rem;
    margin: 25px 0 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    letter-spacing: 0.5px;
}

h2 {
    color: #ffffff;
    text-align: center;
    font-size: 1.8rem;
    margin: 15px 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    font-weight: 600;
}

.texto {
    transition: all 0.3s ease;
    color: #ffffff;
    text-align: center;
    border: 3px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    padding: 20px;
    margin: 15px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.texto:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.6);  
}

.container {
  display: flex;
  flex-direction: column;
  margin: 30px auto;
  width: 90%;
  max-width: 1000px;
  background: rgba(0, 0, 0, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}



.fileira {
  display: flex;
  overflow-x: auto;
  gap: 25px;
  padding: 25px;
  scroll-behavior: smooth;
  margin: 20px 0;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
}

.fileira::-webkit-scrollbar {
  height: 10px;
}

.fileira::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.fileira::-webkit-scrollbar-thumb {
  background: linear-gradient(to right, #004eff, #a770ff);
  border-radius: 10px;
}

img {
    max-width: 220px;
    min-width: 120px;
    align-self: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

img:hover {
    transform: translateY(-5px) scale(1.20);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
}

.yt {
    color: #FF0000;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.discord {
    color: #5865F2;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tiktok {
    color: #000000;
    background: linear-gradient(to right, #FF0050, #00F2EA);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.botao {
    display: inline-block;
    background: linear-gradient(to right, #004eff, #a770ff);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    margin: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.botao:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(to right, #a770ff, #004eff);
}

